4b0bceb5057078999901052fa41322185da1a04d,src/main/java/org/esa/beam/meris/icol/meris/MerisReflectanceCorrectionOp.java,MerisReflectanceCorrectionOp,initialize,#,114

Before Change


            copyBandGroup(aeAerosolProduct, "rho_aeAer");
        }
        if (exportAlphaAot) {
            Band copyAlphaBand = ProductUtils.copyBand("alpha", aeAerosolProduct, targetProduct);
            copyAlphaBand.setSourceImage(aeAerosolProduct.getBand("alpha").getSourceImage());
            Band copyAotBand = ProductUtils.copyBand("aot", aeAerosolProduct, targetProduct);
            copyAotBand.setSourceImage(aeAerosolProduct.getBand("aot").getSourceImage());
        }

After Change


            copyBandGroup(aeAerosolProduct, "rho_aeAer");
        }
        if (exportAlphaAot) {
            ProductUtils.copyBand("alpha", aeAerosolProduct, targetProduct);
            ProductUtils.copyBand("aot", aeAerosolProduct, targetProduct);
        }